home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xnetbris.00 / xnetbris / server.h < prev    next >
C/C++ Source or Header  |  1995-05-10  |  373b  |  45 lines

  1. /* private defines for the server */
  2.  
  3. /* defines for the suits */
  4.  
  5. #define CARDS_SUIT        10
  6. #define NUM_CARDS        40
  7.  
  8. #define SUN            0
  9. #define SWORD          1
  10. #define CUP            2
  11. #define BONE           3
  12.  
  13.  
  14. #define MAXSUIT        BONE                        /* maximum suit */
  15.  
  16. struct struct_hand
  17. {
  18.   struct card *cards[3];
  19. };
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.